|
Lessons -
CENG 101 Computer Programming I
|
|
Administrator tarafından yazıldı.
|
|
Cumartesi, 17 Haziran 2006 07:10 |
/************************************/ /* */ /* AHMET FARUK BİŞKİNLER */ /* */ /* C COMPUTER PROGRAMMING */ /* */ /* LESSON */ /* */ /* PHYSICS 01020406 */ /* */ /* COPYRIGHT © 2003-2005 */ /* by */ /* AHMET FARUK BİŞKİNLER */ /* */ /* */ /* http://ahbis.blogspot.com */ /* http://afb.picom.com.tr */ /* */ /* All Rights Reserved */ /* */ /************************************/ #include <stdio.h> int main() { int x=1,total=0;
while (x<=10){ total+=x; printf("X is %d Total is %d\n",x,total); x++; }
return 0; }
|
|
Son Güncelleme: Cumartesi, 13 Ocak 2007 23:37 |