首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴viceboy的代码贴全部
#include <stdio.h>
void setence();
int main() 
{
setence();
setence();
setence();
printf("Which no body can deny\n");

return 0;
}
void setence()
......................
阅读全部 | 2022年2月20日 15:57
#include <stdio.h>
int main() 
{
    int n,n2,n3;
    /*There are some faults in this programme*/
    
    n=5;
    n2=n*n;
    n3=n*n*n;

printf("n = %d\nn squared = %d\nn cubed = %d\n",n,n2,n3);
return 0;
......................
阅读全部 | 2022年2月19日 17:16
#include <stdio.h>
int main() 
{
    int n,n2,n3;
    /*There is some faults in this programme*/
    
    n=5;
    n2=n*n;
    n3=n*n*n;

printf("n = %d\nn squared = %d\nn cubed = %d\n",n,n2,n3);
return 0;
......................
阅读全部 | 2022年2月19日 17:15
#include <stdio.h>
void answer(void)
{
    printf("Dad,I am watching tv,what's up?\n");   
};

int main() 
{
printf("Rick,what are you doing?\n");

answer();

......................
阅读全部 | 2022年2月19日 17:01
#include <stdio.h>

int main(void) 
{
int feet,fathoms;

fathoms=2;
feet=6*fathoms;
printf("There are %d feet in %d fathoms!\n",feet,fathoms);
printf("Yes, I said %d feet!\n",6*fathoms);
return 0;
}
阅读全部 | 2022年2月19日 16:30
1
viceboy