2023年4月6日木曜日
ChatGPT (C言語でトランプを作ってみる)
「トランプは作れますか」と問うと、
Here is the complete code for a program that represents a deck of playing cards in C#:
ここから--------------------------------------------------------------------------------------------
csharp
Copy code
class Card
{
public string Suit { get; set; }
public string Rank { get; set; }
}
class Deck
{
private List<Card> cards;
public Deck()
{
cards = new List<Card>();
string[] suits = new string[] { "Spades", "Hearts", "Diamonds", "Clubs" };
string[] ranks = new string[] { "Ace", "2", "3", "4", "5", "6", "7", "8", "9", "10", "Jack", "Queen", "King" };
foreach (var suit in suits)
{
foreach (var rank in ranks)
{
cards.Add(new Card { Suit = suit, Rank = rank });
}
}
}
public List<Card> GetCards()
{
return cards;
}
}
class Program
{
static void Main(string[] args)
{
Deck deck = new Deck();
foreach (var card in deck.GetCards())
{
Console.WriteLine(card.Rank + " of " + card.Suit);
}
Console.ReadLine();
}
}
-------------------------------------------------------------------------------------------------ここまで
This program creates a Card class to represent a playing card, a Deck class to represent a deck of playing cards, and a Main method to create a deck of cards and display its contents. The program generates a standard deck of 52 playing cards and displays the rank and suit of each card.
さらに、visual studioの使い方
エラーの処理1。エラーの処理2。
ChatGPT 簡単なC言語のプログラムを作ってみました
いやいや、これはすごい。10秒かかっていません。
頭いいなあ。
2023年4月5日水曜日
clipchamp 使ってみました。
無料で、最初からインストールされているアプリです。
最初の画面。
右上の紫のボタン「動画を作成」をクリック。編集したいビデオを「メディアのインポート」の部分と、さらに、編集画面のところにもコピーする。(2カ所です)
編集が終わったら、右上のエクスポートのボタンをクリック。
パワーポイント (図形を立体的に回転させる)
平面的に回転させるのは簡単だと思いますが、立体的に回転させるにはどうすればいいのでしょうか。
最初のスライドに図形を描く。
そして、そのスライドの複製を作る。(スライドの上で右クリックをして「スライドの複製」を選ぶと、そのスライドのすぐ下に一枚の複製ができます。
下のスライドの図形を選び、反転メニューを選びます。私は左右反転を選びました。