如何用c sharp语言编写九九乘法表的窗体应用程序

如何用c sharp语言编写九九乘法表的窗体应用程序,第1张

修改文件program.cs,照以下的文件空友改下:

///斗知槐

///

应用程序的主入口点。

///

[stathread]

static

void

main()

{

application.enablevisualstyles()

application.setcompatibletextrenderingdefault(false)

application.run(new

新窗猛庆体的类名)

}

九九乘法口诀滚尺的两个最简单程序:

#include<math.h>

main()

{ int m,n

m=1

while(m<=9)

{n=1

while(n<=m)

{printf("%d*%d=%-4d",m,n,m*n)

n++

}

printf("\n")

m++

}

}

或大弯高者

#include<math.h>

main()

{ int m,n

for(m=1m<闹改=9m++)

{ for(n=1n<=mn++)

printf("%d*%d=%-4d",m,n,m*n)

printf("\n")

}

}

用C++编写的答案

#include<iostream.h>

int main()

{

int number

for(int i=1i<=9i++)

{

for(int j=1j<=ij++)

{

number=i*j

cout<<i<<"*"<<j<<"="<<number<<' '

}

cout<<endl

}

return 0

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/12523430.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-26
下一篇 2023-05-26

发表评论

登录后才能评论

评论列表(0条)

保存