Hhh

C++ Code


1
2
3
4
5
6
7
8

 

#include<stdio.h>

int main()
{
    
  printf("hello world\n");

return 0;      
}

C++ Code


1
2
3
4
5
6
7
8
9

#include<stdio.h>

int main()
{
    
  printf("hello world\n");

return 0;      
}

C++ Code


1
2
3
4
5
6
7
8
9

#include<stdio.h>

int main()
{
    
  printf("hello world\n");

return 0;      
}

  1. #include "stdio.h"
  2. int main()
  3. {int i,j,result;
  4. for (i=1;i<10;i++)
  5. { for(j=1;j<10;j++)
  6. {            result=i*j;
  7. printf("%d*%d=%-3d",i,j,result);/*-3d表示左对齐,占3位*/}
时间: 2024-10-10 16:28:42

Hhh的相关文章

XXrl找bug hhh

http://oj.acm.zstu.edu.cn/JudgeOnline/problem.php?id=4434 没有用队列,疯狂找不到bug,后来发现很简单的判断时==n和m了,本来心花怒放,测试数据也过了.然而,呜呼,许久不见的re: 好的,re,re,重新,重新!! 然而,不死心的在开更大一点,发现是WA. 那什么时候bfs用数组就行了呢.. 1 #include<cstdio> 2 #include<cmath> 3 #include<cstring> 4 #

bash基础命令参考

if 语法:help if if COMMANDS; then COMMANDS; [ elif COMMANDS; then COMMANDS; ]... [ else COMMANDS; ] fi 文件相关: 1.if [ -f file ]:是否问文件(不存在返回false) 2.if [ -d dir ]:是否为目录 3.if [ -e file ]:文件(目录)是否存在 4.if [ -r file ]:是否可读 5.if [ -w file ]:是否可写 6.if [ -x file

力不从心

想好好学习 但却沉迷于打机 哎 这样下去我该怎么办 真的要去职中么 不 我不甘心 我想去英才 我想一模完就走人 我想去泡妹子 我不想体考 我不想去职中 但是我没选择的权利 我只能努力 一年 难得我就只能去职中吗 不 我不知道 只能逼迫自己努力 加油 我相信 四中英才大门为我而开 回到现实 还是想想怎么克制住不去打机 哎 五点闹钟 坚持复kan习pian hhh

并查集应用

题目描述: One way that the police finds the head of a gang is to check people's phone calls. If there is a phone call between A and B, we say that A and B is related. The weight of a relation is defined to be the total time length of all the phone calls

python2.0_s12_day13_javascript&amp;Dom&amp;jQuery

今天主要内容:JavaScriptDomjQuery http://www.cnblogs.com/wupeiqi/articles/5369773.html 今天主要内容大致了解:javascript 1.首先要知道 JavaScript 和 Java 没有半毛钱关系. 2.JavaScript 和python语言 一样 它也是一门语言.对于python语言需要用python解释器解释.而javascript的解释器是浏览器. 3.javascript 能实现什么.javascript就是让我

【HDU2222】Keywords Search

Problem DescriptionIn the modern time, Search engine came into the life of everybody like Google, Baidu, etc.Wiskey also wants to bring this feature to his image retrieval system.Every image have a long description, when users type some keywords to f

php绘图(一)

绘图要单独有个php文件,图画好后,HTML里面引入 image src gd_info()查找gd库是否开启 //print_r(gd_info()); if(function_exists('gd_info')){ echo '<pre>'; print_r(gd_info()); }else{ echo '没有开启gd库'; } 如果没有开启进入phpini文件把 extension=php_gd2.dll 前面的分号可以去掉 imagecreate()创建画布 imagecolorll

1)C++对象大小计算

? ? ? C++对象的大小不同的编译器的实现是不一样的,以下仅讨论.net2003,其他编译的可能出现的结果以下也做了分析和猜测.在反推不同编译器实现的C++对象的大小时.对齐是一个很重要也容易被遗忘的问题. class A{}; ? ? ?类A是一个空类,但是它的大小并不为0,编译期间编译器会插入一个char在其中,这个char我们是看不到的,这样的用处是保证生成的不同对象具有不同地址,就是要对象里有东西. class B:public virtual A{};B类是对A类的虚继承,B中一般

LINQ中in的实现方法-LINQ To Entities如何实现查询 select * from tableA where id in (1,2,3,4)

如果用in是字符串类型无问题,可以直接这样用 var result = SNFService.Instance.ModuleService.GetList(UserInfo).Where(entity => entity.DeletionStateCode == 0 ).Where(entity => urls.Contains((entity.NavigateUrl == null ? "" : entity.NavigateUrl).ToLower())).OrderB