Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~2K People Reached
Member Avatar for kris222

A means AMA but i cant figure out whats wrong cuz its gotta accept both capital and small letters help please #include<iostream.h> void main() { char x[2]; cout<<"What does the letter A mean in ACLC?"; cout<<endl<<"S:"; cin.getline(x,2); { if(x[0]=='A'||x[0]=='a') x[0]='y'; else x[0]='n'; { } if(x[1]=='M'||x[1]=='m') x[1]='y'; else x[1]='n'; } { …

Member Avatar for zeroliken
0
83
Member Avatar for kris222
Member Avatar for iamthwee
0
124
Member Avatar for kris222

im having a porblem with my laptop im just on safe mode ryt now, when i start normal mode after a few minutes after booting it just keep hanging i cant do any thing but look at the screen but i can move the mouse but cant click anything can …

Member Avatar for caperjack
0
183
Member Avatar for kris222

heres what i ve done ~~~ vb Private Sub cmdtimein_Click() If txtempno.Text = "" Then MsgBox "Please Input employee number!", vbExclamation + vbOKOnly, "Employee Record" Exit Sub Adotime.Recordset.MoveNext Else Adotime.Recordset.AddNew Adotime.Recordset.Fields("employeeno").Value = txtempno.Text Adotime.Recordset.Fields("timein").Value = Time Adotime.Recordset.Fields("timeout").Value = Time Adotime.Recordset.Fields("date").Value = Date Adotime.Recordset.Update MsgBox "You are time in!", vbInformation + …

Member Avatar for QVeen72
0
502
Member Avatar for kris222

here's what i ve done so far can anyone please check for the error i made cause the output is wrong: .model small .stack 100h .data disp db "Enter Choice:$" disp1 db "a-IT22A",0ah,0dh,"$" disp2 db "b-IT22B",0ah,0dh,"$" disp3 db "c-IT22C",0ah,0dh,"$" disp4 db "Choose Behaviour Level:$" disp5 db "1-Excellent",0ah,0dh,"$" disp6 db "2-Normal",0ah,0dh,"$" …

Member Avatar for thines01
0
76
Member Avatar for kris222

what are the other types of variables in tasm ex: bh,bl,cx what else is there that i can use?

Member Avatar for kris222
0
97
Member Avatar for kris222

.model small .stack 100h .code start: xor cx, cx mov ah, 1h @loop: int 21h cmp al, 0dh je @end push ax inc cx jmp @loop @end: mov ah, 2h dis: pop ax int 21h loop dis mov ah, 4ch int 21h end start

Member Avatar for thines01
0
113
Member Avatar for kris222

this should be the output: A b C d E f G h I j K l M n O p Q r S t U v W x Y z heres what i ve done so far: class za { public static void main(String[]args) { String x="abcdefghijklmnopqrstuvwxyz"; int ctr; …

Member Avatar for stultuske
0
94
Member Avatar for kris222

so this is what the output should be: A b C d E f G h I j K l M n O p Q r S t U v W x Y z heres what ive done so far class za { public static void main(String[]args) { String x="abcdefghijklmnopqrstuvwxyz"; …

Member Avatar for stultuske
0
143
Member Avatar for kris222

Hey can someone help me with my java program you have to A-Z to Z-A here s what i ve done so far: class az { public static void main(String[]args)throws Exception { String x="abcdefghijklmnopqrstuvwxyz"; int ctr; for(ctr=1;ctr<=26;ctr++) { char z=x.charAt(26); System.out.print(z); } } }

Member Avatar for stultuske
0
107